This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SUPPORT Q&A - When trying to login in, SELECT permission denied

dnohr - Friday, February 11, 2011 4:32 PM:

When trying to login using 'admin' and "innovator" as user name and password, I get an error that says:

The SELECT permission was denied on the object 'LANGUAGE', database 'InnovatorSolutions',Scheme 'dbo'.

I'm assuming this is an issue with the SQL server setup.  I didn't change anything, all permissions are as the installation process left them.

 

Any ideas on what could be going on?



PatrickW - Monday, February 14, 2011 9:16 AM:

You will probably need to set the data ownership. Currently it seems not to be the innovator db user.

In the SQL Management Console execute:

  • exec sp_change_users_login database, 'innovator', 'innovator'
  • exec sp_grantdbaccess 'innovator','innovator'
  • exec sp_addrolemember 'db_owner','innovator'

If you used another innovator user name and/or password, adjust accordingly.